home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000824-20010305 / 000210_news@columbia.edu _Fri Jan 12 15:13:06 2001.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from watsun.cc.columbia.edu (watsun.cc.columbia.edu [128.59.39.2])
  3.     by monire.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id PAA22562
  4.     for <kermit.misc@cpunix.cc.columbia.edu>; Fri, 12 Jan 2001 15:13:05 -0500 (EST)
  5. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  6.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id PAA12034
  7.     for <kermit.misc@watsun.cc.columbia.edu>; Fri, 12 Jan 2001 15:13:05 -0500 (EST)
  8. Received: (from news@localhost)
  9.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id PAA29969
  10.     for kermit.misc@watsun.cc.columbia.edu; Fri, 12 Jan 2001 15:11:52 -0500 (EST)
  11. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  12. From: fdc@columbia.edu (Frank da Cruz)
  13. Subject: Re: Secure version of C-kermit compiles but still no security
  14. Date: 12 Jan 2001 20:11:43 GMT
  15. Organization: Columbia University
  16. Message-ID: <93nodv$t8e$1@newsmaster.cc.columbia.edu>
  17. To: kermit.misc@columbia.edu
  18.  
  19. In article <93ni6r$ptq$1@nnrp1.deja.com>,  <nildap@my-deja.com> wrote:
  20. : I downloaded the source code of the secure version of C-Kermit 7.0
  21. : (http://www.kermit-project.org/xxx/crypto.html) and compiled on a Linux
  22. : platform with, apparently, no problem. However, when I type 'show
  23. : features' at the kermit prompt it says that NONE of the security
  24. : features are available, in particular, it says
  25. : "No SRP(TM) (Secure Remote Password) protocol" and "No encryption"
  26. : Is there something more to do to activate the security features other
  27. : than compiling the secure version?
  28. : ...
  29. : Target: linux
  30. :
  31. Wrong target.  You have to use one of the secure targets:
  32.  
  33.   make linux+krb5
  34.   make linux+krb5+krb4
  35.   make linux+srp
  36.   make linux+srp+no-des
  37.   make linux+srp-export
  38.   make linux+srp+pam
  39.   make linux+shadow+pam
  40.   make linux+openssl
  41.   make linux+openssl+shadow
  42.   make linux+srp+openssl
  43.   make linux+krb5+krb4+srp
  44.   make linux+krb5+krb4+srp+openssl
  45.   make linux+krb5+krb4+openssl
  46.   make linux+krb5+krb4+openssl+shadow
  47.   make linux+krb5+krb4+openssl+zlib+shadow
  48.   make linux+krb5+krb4+srp-export
  49.   make linux+krb5+krb4+srp+pam
  50.   make linux+krb5+krb4+srp+openssl+pam-debug
  51.   make linux+krb5+krb4+srp+openssl+pam
  52.   make linux+krb5+krb4+srp+openssl+zlib+pam
  53.  
  54. See the comments with each target for a fuller explanation.
  55. As you can see, things get complicated when we start adding security.
  56.  
  57. - Frank